home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / source.def < prev    next >
C/C++ Source or Header  |  1991-11-04  |  4KB  |  149 lines

  1. This file is source.def, from which is created source.c.
  2. It implements the builtins "." and  "source" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES source.c
  23.  
  24. $BUILTIN source
  25. $FUNCTION source_builtin
  26. $SHORT_DOC source filename
  27. Read and execute commands from FILENAME and return.  The pathnames
  28. in $PATH are used to find the directory containing FILENAME.
  29. $END
  30. $BUILTIN .
  31. $DOCNAME dot
  32. $FUNCTION source_builtin
  33. $SHORT_DOC . [filename]
  34. Read and execute commands from FILENAME and return.  The pathnames
  35. in $PATH are used to find the directory containing FILENAME.
  36. $END
  37. /* source.c - Implements the `.' and `source' builtins. */
  38.  
  39. #include <sys/types.h>
  40. #include <sys/file.h>
  41. #include <errno.h>
  42. #include "../shell.h"
  43. #include "../posixstat.h"
  44. #include "../filecntl.h"
  45.  
  46. extern int errno;
  47.  
  48. /* Read and execute commands from the file passed as argument.  Guess what.
  49.    This cannot be done in a subshell, since things like variable assignments
  50.    take place in there.  So, I open the file, place it into a large string,
  51.    close the file, and then execute the string. */
  52. source_builtin (list)
  53.      WORD_LIST *list;
  54. {
  55.   extern int return_catch_flag, return_catch_value;
  56.   extern jmp_buf return_catch;
  57.   int result, return_val;
  58.  
  59.   /* Assume the best. */
  60.   result = EXECUTION_SUCCESS;
  61.  
  62.   if (list)
  63.     {
  64.       extern char *find_path_file ();
  65.       char *string, *filename, *tempfile;
  66.       struct stat finfo;
  67.       int fd, tt;
  68.  
  69.       tempfile = find_path_file (list->word->word);
  70.  
  71.       if (!tempfile)
  72.     tempfile = savestring (list->word->word);
  73.  
  74.       filename = (char *)alloca (1 + strlen (tempfile));
  75.       strcpy (filename, tempfile);
  76.       free (tempfile);
  77.  
  78.       if (stat (filename, &finfo) == -1 ||
  79.       (fd = open (filename, O_RDONLY)) == -1)
  80.     goto file_error_exit;
  81.  
  82.       string = (char *)xmalloc (1 + finfo.st_size);
  83.       tt = read (fd, string, finfo.st_size);
  84.       string[finfo.st_size] = '\0';
  85.  
  86.       /* Close the open file, preserving the state of errno. */
  87.       { int temp = errno; close (fd); errno = temp; }
  88.  
  89.       if (tt != finfo.st_size)
  90.     {
  91.       free (string);
  92.  
  93.     file_error_exit:
  94.       file_error (filename);
  95. #if defined (ALLOW_RIGID_POSIX_COMPLIANCE)
  96.       /* POSIX shells exit if non-interactive and file error. */
  97.       if (getenv ("POSIX_PENDANTIC"))
  98.         {
  99.           extern int interactive_shell;
  100.  
  101.           if (!interactive_shell)
  102.         longjmp (top_level, EXITPROG);
  103.         }
  104. #endif /* ALLOW_RIGID_POSIX_COMPLIANCE */
  105.       return (EXECUTION_FAILURE);
  106.     }
  107.  
  108.       if (tt > 80)
  109.     tt = 80;
  110.  
  111.       if (check_binary_file (string, tt))
  112.     {
  113.       free (string);
  114.       builtin_error ("%s: cannot execute binary file", filename);
  115.       return (EX_BINARY_FILE);
  116.     }
  117.  
  118.       begin_unwind_frame ("File Sourcing");
  119.  
  120.       if (list->next)
  121.     {
  122.       extern void pop_dollar_vars (), push_dollar_vars ();
  123.  
  124.       push_dollar_vars ();
  125.       add_unwind_protect ((Function *)pop_dollar_vars, (char *)NULL);
  126.       remember_args (list->next, 1);
  127.     }
  128.  
  129.       unwind_protect_int (return_catch_flag);
  130.       unwind_protect_jmp_buf (return_catch);
  131.  
  132.       return_catch_flag++;
  133.       return_val = setjmp (return_catch);
  134.  
  135.       if (return_val)
  136.     parse_and_execute_cleanup ();
  137.       else
  138.     result = parse_and_execute (string, filename);
  139.  
  140.       run_unwind_frame ("File Sourcing");
  141.  
  142.       /* If RETURN_VAL is non-zero, then we return the value given
  143.      to return_builtin (), since that is how we got here. */
  144.       if (return_val)
  145.     result = return_catch_value;
  146.     }
  147.   return (result);
  148. }
  149.